home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr28 / par300.zip / EXAMPL11.POM < prev    next >
Text File  |  1995-04-07  |  858b  |  37 lines

  1. ;
  2. ;   NOTE:  A quick-reference summary of POM commands appears in EXAMPL04.POM
  3. ;
  4. ;-------------------------------------------------------------------------------
  5. ;
  6. ;   Allow null lines
  7. ;
  8. MINLEN "0"
  9. ;
  10. ;   Properize, using the Properization Exceptions File GENERIC.PEF
  11. ;   We properize using the Intelligent and Sentence methods
  12. ;
  13. PROPER $FLINE "IS" "GENERIC.PEF"
  14. ;
  15. ;   Because the list of items is not formatted as recognizable sentences,
  16. ;   we must manually uppercase the first alphanumeric character.
  17. ;
  18. BEGIN $FLINE[1] = "-"
  19.   PROPER $FLINE "ISU" "GENERIC.PEF"
  20. END
  21. ;
  22. ;   We will properize the indented items in the simplest way
  23. ;
  24. BEGIN $FLINE[1] = " "
  25.   PROPER $FLINE
  26. END
  27. ;
  28. ;   The salutation line contains a name, so we must properize it
  29. ;
  30. BEGIN $FLINE[1 4] = "Dear"
  31.   PROPER $FLINE
  32. END
  33. ;
  34. ;   Output
  35. ;
  36. OUTEND |{$FLINE}
  37.